projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1341d23
)
(timer-until): Fix syntax error.
author
Karl Heuer
<kwzh@gnu.org>
Mon, 14 Apr 1997 19:22:51 +0000
(19:22 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Mon, 14 Apr 1997 19:22:51 +0000
(19:22 +0000)
lisp/timer.el
patch
|
blob
|
history
diff --git
a/lisp/timer.el
b/lisp/timer.el
index 3b6382989cbaf1268820c1d64d2325f9f96d8346..c06c685ccf5bca52560f97b6a6598363cc6c7f3a 100644
(file)
--- a/
lisp/timer.el
+++ b/
lisp/timer.el
@@
-254,7
+254,7
@@
fire repeatedly that many seconds apart."
(defun timer-until (timer time)
"Calculate number of seconds from when TIMER will run, until TIME.
TIMER is a timer, and stands for the time when its next repeat is scheduled.
-TIME is a time-list.
+TIME is a time-list.
"
(let ((high (- (car time) (aref timer 1)))
(low (- (nth 1 time) (aref timer 2))))
(+ low (* high 65536))))